home *** CD-ROM | disk | FTP | other *** search
- /*
- - show.sman
- -
- - ARexx program to display the content of a file.
- - The display tool depends of the file extension.
- - The tool is launched asynchronously.
- -
- - © Copyright 1995-1996 Bernard Krummenacher Silicon-Peace
- -
- - Bernard Krummenacher Silicon-Peace 95.04.11 Created this file.
- */
-
- parse arg FileName
-
- options results
-
- say FileName
-
- address COMMAND 'run multiview >NIL: <NIL:' '"'FileName'"'
-
- return 0
-